home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-03-20 | 610 b | 37 lines | [TEXT/MSET] |
- \ Alert support.
-
- type{ STOPALERT NOTEALERT CAUTIONALERT }
-
- :class ALERT super{ x-array }
-
- int RESID
- int TYPE
-
- :m SHOW:
- word0 int: resID 0 ( procID ) get: type
- SELECT[ StopAlert ]=> call StopAlert
- [ NoteAlert ]=> call NoteAlert
- [ CautionAlert ]=> call CautionAlert
- DEFAULT=> drop call Alert
- ]SELECT
-
- i->l dup 0>
- IF 1- exec: super
- ELSE drop
- THEN ;m
-
- :m INIT: \ ( xt1 ... xtN N resID -- )
- put: resID put: super ;m
-
- :m SETTYPE:
- put: type ;m
-
- :m DISP: \ ( resID type -- )
- put: type put: resID show: self ;m
-
- :m CLASSINIT:
- 16 put: type
- classinit: super ;m
-
- ;class
-